Skip to content

Commit

Permalink
githook el9 update and make terminals disappear after launch
Browse files Browse the repository at this point in the history
  • Loading branch information
scottdmilner committed Nov 23, 2024
1 parent 0084475 commit 936b421
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .githooks/update-venv
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/bin/bash
echo "Updating dev venv..."

command -v pipx || python3 -m pip install --user pipx && python3 -m pipx ensurepath
command -v pipx || {
python3 -m pip install --user pipx && python3 -m pipx ensurepath
}
command -v poetry || pipx install poetry
pipx upgrade poetry
poetry install
Expand Down
5 changes: 3 additions & 2 deletions Dungaya.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
/usr/bin/env python pipeline maya

nohup /usr/bin/env python pipeline maya >> "${TMPDIR}/pipe-launch.log" 2>&1 &
sleep 1
exit 0
5 changes: 3 additions & 2 deletions Dungini.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
/usr/bin/env python pipeline houdini

nohup /usr/bin/env python pipeline houdini >> "${TMPDIR}/pipe-launch.log" 2>&1 &
sleep 1
exit 0
5 changes: 3 additions & 2 deletions Nungeon.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
/usr/bin/env python pipeline nuke

nohup /usr/bin/env python pipeline nuke >> "${TMPDIR}/pipe-launch.log" 2>&1 &
sleep 1
exit 0

0 comments on commit 936b421

Please sign in to comment.