chore: finalize renaming by staging deletions

This commit is contained in:
2026-05-09 15:54:33 +00:00
parent 00ac231926
commit f99d641598
2 changed files with 0 additions and 30 deletions

View File

@@ -1,15 +0,0 @@
#!/bin/bash
set -e
IMAGE_NAME="rust-dev-pod"
if ! podman image exists $IMAGE_NAME; then
echo "Image $IMAGE_NAME not found. Building..."
podman build -t $IMAGE_NAME .
fi
echo "Dropping you into the Rust Dev Pod..."
podman run -it --rm \
-v "$PWD:$PWD" \
-w "$PWD" \
$IMAGE_NAME \
bash

View File

@@ -1,15 +0,0 @@
#!/bin/bash
set -e
# Run the sub-scripts
/usr/local/bin/install-apk.sh
/usr/local/bin/install-rust.sh
/usr/local/bin/install-cargo-tools.sh
echo "Setting up dotfiles..."
mkdir -p $HOME/.config/dotfiles
if [ ! -d "$HOME/.config/dotfiles/.git" ]; then
git clone https://git.nubo.sh/hulthe/df.git $HOME/.config/dotfiles
fi
cd $HOME/.config/dotfiles
bash manager/setup.sh