diff options
| author | 2024-01-06 19:54:21 -0500 | |
|---|---|---|
| committer | 2024-01-06 19:54:21 -0500 | |
| commit | e6c1c0afc69ee13465bb68a6bdeb35b6876146d4 (patch) | |
| tree | ffea140be35691dfc24e9a6ca6c54e2d0247e8a8 /scripts | |
| parent | 11bbaf5198d15da44731ffb63411558f1c72f97e (diff) | |
| download | camu-e6c1c0afc69ee13465bb68a6bdeb35b6876146d4.tar.gz camu-e6c1c0afc69ee13465bb68a6bdeb35b6876146d4.tar.bz2 camu-e6c1c0afc69ee13465bb68a6bdeb35b6876146d4.zip | |
Initial synced playback
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/run.sh | 4 | ||||
| -rwxr-xr-x | scripts/run_debug.sh | 4 | ||||
| -rwxr-xr-x | scripts/run_tree.sh | 4 |
3 files changed, 4 insertions, 8 deletions
diff --git a/scripts/run.sh b/scripts/run.sh index abd024a..f2bbaa0 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -1,5 +1,3 @@ #! /usr/bin/env sh -export PYTHONDONTWRITEBYTECODE=1 -export PYTHONPATH=$HOME/c/shoki/vendor/vendor/lib/python3.11/site-packages export mesa_glthread=true -rm -f /tmp/cmv_sock && ./src/fruits/cmv/cmv "$@" +./src/fruits/sink/sink "$@" diff --git a/scripts/run_debug.sh b/scripts/run_debug.sh index b05a533..bd9a667 100755 --- a/scripts/run_debug.sh +++ b/scripts/run_debug.sh @@ -1,4 +1,2 @@ #! /usr/bin/env sh -export PYTHONDONTWRITEBYTECODE=1 -export PYTHONPATH=$HOME/c/shoki/vendor/vendor/lib/python3.11/site-packages -rm -f /tmp/cmv_sock && gdb -ex run --args ./src/fruits/cmv/cmv $@ +gdb -ex run --args ./src/fruits/cmv/cmv "$@" diff --git a/scripts/run_tree.sh b/scripts/run_tree.sh index 4359c29..274ec5c 100755 --- a/scripts/run_tree.sh +++ b/scripts/run_tree.sh @@ -1,4 +1,4 @@ #! /usr/bin/env sh export PYTHONDONTWRITEBYTECODE=1 -export PYTHONPATH=$HOME/c/shoki/vendor/vendor/lib/python3.11/site-packages -gdb -ex run --args ./src/tree/tree $@ +export PYTHONPATH=$HOME/c/shoki/vendor/vendor +rm -f /tmp/tree_sock && gdb -ex run --args ./src/tree/tree $@ |