From 84be0592ab6ff6b82eac5daa7d504715270b64c7 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sat, 21 Sep 2024 05:47:49 +0100 Subject: [PATCH] Rename git-sync-all -> gsync --- system/home/scripts/default.nix | 2 +- system/home/scripts/shell/{git-sync-all.sh => gsync.sh} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename system/home/scripts/shell/{git-sync-all.sh => gsync.sh} (100%) diff --git a/system/home/scripts/default.nix b/system/home/scripts/default.nix index 91c9b320..29e43780 100644 --- a/system/home/scripts/default.nix +++ b/system/home/scripts/default.nix @@ -3,7 +3,7 @@ home = { packages = [ (pkgs.writeShellScriptBin "esync" (builtins.readFile ./shell/esync.sh)) - (pkgs.writeShellScriptBin "git-sync-all" (builtins.readFile ./shell/git-sync-all.sh)) + (pkgs.writeShellScriptBin "gsync" (builtins.readFile ./shell/gsync.sh)) (pkgs.writeShellScriptBin "rsync-local-config" (builtins.readFile ./shell/rsync-local-config.sh)) (pkgs.writeShellScriptBin "xdg-query-program" (builtins.readFile ./shell/xdg-query-program.sh)) ]; diff --git a/system/home/scripts/shell/git-sync-all.sh b/system/home/scripts/shell/gsync.sh similarity index 100% rename from system/home/scripts/shell/git-sync-all.sh rename to system/home/scripts/shell/gsync.sh