From 0ebcc28ec20e2bd3ef306e37f4d66d239f8aa6af Mon Sep 17 00:00:00 2001 From: coolneng Date: Sat, 9 Oct 2021 22:57:45 +0200 Subject: [PATCH] Fix flake.nix creation in project-init --- scripts/.local/share/scripts/project-init | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/.local/share/scripts/project-init b/scripts/.local/share/scripts/project-init index 021d8ae..208f546 100755 --- a/scripts/.local/share/scripts/project-init +++ b/scripts/.local/share/scripts/project-init @@ -18,7 +18,7 @@ type=$1 if [ "$type" = "git" ]; then git init cp ~/Documents/IT/shell.nix . - cp ~/Documents/IT/flake-template.nix.nix flake.nix + cp ~/Documents/IT/flake-template.nix flake.nix mkdir src data git add ./* git commit -m "Initial commit" @@ -29,7 +29,7 @@ elif [ "$type" = "remote-git" ]; then touch README.org cp ~/Documents/IT/gpl-3.0.md LICENSE.md cp ~/Documents/IT/shell.nix . - cp ~/Documents/IT/flake-template.nix.nix flake.nix + cp ~/Documents/IT/flake-template.nix flake.nix mkdir src tests data git add ./* git commit -m "Initial commit"