This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/os/linux/arch/bootstrap-test.fish

14 lines
290 B
Fish
Executable File

#!/usr/bin/env fish
docker ps -q || begin
echo "docker not running"
exit 1
end
docker pull archlinux -q || begin
echo "failed to pull archlinux docker image"
exit 1
end
docker run -it --rm -v $DOTFILES_PATH:/dotfiles:ro archlinux sh -c "/dotfiles/os/linux/arch/provision.sh && fish"