diff --git a/rust-pod b/rust-pod deleted file mode 100755 index c1512b1..0000000 --- a/rust-pod +++ /dev/null @@ -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 diff --git a/setup-rust-dev.sh b/setup-rust-dev.sh deleted file mode 100755 index fc4f115..0000000 --- a/setup-rust-dev.sh +++ /dev/null @@ -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