Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Commit

Permalink
fix: nushell script perms
Browse files Browse the repository at this point in the history
  • Loading branch information
tulilirockz committed Mar 7, 2024
1 parent 3075430 commit 292bea7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/scripts/zluda.nu
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let ZLUDA_LATEST = (http get https://api.github.com/repos/vosen/ZLUDA/releases/l
http get $ZLUDA_LATEST | save -f /tmp/zluda.tar.gz

mkdir /tmp/zluda
tar --strip-components 1 -xvzf /tmp/zluda.tar.gz -C /tmp/zluda
sudo tar --strip-components 1 -xvzf /tmp/zluda.tar.gz -C /tmp/zluda
mv /tmp/zluda /usr/lib64/zluda

rm -f /tmp/zluda.tar.gz
2 changes: 1 addition & 1 deletion modules/script-nu/nushell-launcher.nu
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ def "main" [
yaml_file: string
] {
for $script in ($yaml_file | from yaml).scripts {
run-external $"/tmp/config/scripts/($script)"
NU_LOG_LEVEL=DEBUG run-external $"/tmp/config/scripts/($script)"
}
}

0 comments on commit 292bea7

Please sign in to comment.