diff options
Diffstat (limited to 'common/files/init')
-rwxr-xr-x | common/files/init | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/files/init b/common/files/init index 1b7c86b..4f108ef 100755 --- a/common/files/init +++ b/common/files/init @@ -81,4 +81,10 @@ while read -r var; do fd . --hidden --type file --exec sed --in-place "s|%\bINIT_$var_name\b|$var_value|" done < "$replacement_file" +# HACK: Re-add the executable permissions to files, which the nix template has somehow +# removed <2024-04-02> +chmod +x scripts/* +chmod +x update.sh +[ -f ./build.sh ] && chmod +x build.sh + # vim: ft=sh |