Hack together a quick way to execute using local bindirs (#1)

This commit is contained in:
Andrew Tomaka 2021-03-31 23:31:05 -04:00 committed by GitHub
parent cbc8bede7a
commit 3b01025006
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 56 additions and 2 deletions

View file

@ -7,6 +7,12 @@ function aws-profile {
fi
}
function aet-bin-exec {
local readonly script=$1; shift
./aet-bin/$script $@
}
function fix-permissions {
find . -type d -print0 | xargs -0 chmod 0755
find . -type f -print0 | xargs -0 chmod 0644