diff options
author | Soispha <soispha@vhack.eu> | 2023-12-29 08:59:03 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-12-29 08:59:03 +0100 |
commit | d28d93e674d42e79c547f5aabb86190e0d3446a2 (patch) | |
tree | e522e33156454fc0510f21f5e5b5df01675fc7b5 /hm/soispha/conf | |
parent | feat(hm/conf/git): Use the previous commit's scope when committing (diff) | |
download | nixos-config-d28d93e674d42e79c547f5aabb86190e0d3446a2.zip |
feat(hm/conf/git): Use correct escaping for '${}' in nix
Diffstat (limited to 'hm/soispha/conf')
-rw-r--r-- | hm/soispha/conf/git/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hm/soispha/conf/git/default.nix b/hm/soispha/conf/git/default.nix index eda42210..327a2cc2 100644 --- a/hm/soispha/conf/git/default.nix +++ b/hm/soispha/conf/git/default.nix @@ -68,7 +68,7 @@ in { "--message='WIPE-SAVEPOINT'" "--no-gpg-sign" "&&" - "git reset $${1:-HEAD~} --hard" + "git reset \${1:-HEAD~} --hard" "&&" "git clean -fd" ]; |