fix file not found
This commit is contained in:
parent
7976406c51
commit
f07bb869af
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
./launcher.sh "https://www.youtube.com/watch?v=Wi2h6BpRcns" "$1"
|
"$(pwd)/cams/launcher.sh" "https://www.youtube.com/watch?v=Wi2h6BpRcns" "$1"
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
./launcher.sh "https://www.youtube.com/watch?v=dSycFECDqME" "$1"
|
"$(pwd)/cams/launcher.sh" "https://www.youtube.com/watch?v=dSycFECDqME" "$1"
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
./launcher.sh "https://www.youtube.com/watch?v=Z591sNEtPgs" "$1"
|
"$(pwd)/cams/launcher.sh" "https://www.youtube.com/watch?v=Z591sNEtPgs" "$1"
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
./launcher.sh "https://www.youtube.com/watch?v=G05wmWFDtSo" "$1"
|
"$(pwd)/cams/launcher.sh" "https://www.youtube.com/watch?v=G05wmWFDtSo" "$1"
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
./launcher.sh "https://www.youtube.com/watch?v=hO9Nkorupv4" "$1"
|
"$(pwd)/cams/launcher.sh" "https://www.youtube.com/watch?v=hO9Nkorupv4" "$1"
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
./launcher.sh "https://www.youtube.com/watch?v=0Ns1sNoUSaY" "$1"
|
"$(pwd)/cams/launcher.sh" "https://www.youtube.com/watch?v=0Ns1sNoUSaY" "$1"
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
./launcher.sh "https://www.youtube.com/watch?v=neo1hRZTO0s" "$1"
|
"$(pwd)/cams/launcher.sh" "https://www.youtube.com/watch?v=neo1hRZTO0s" "$1"
|
||||||
|
|
2
new
2
new
|
@ -5,6 +5,6 @@ mkdir -p "$_cam_directory"
|
||||||
|
|
||||||
echo '#!/bin/sh' >> "$_cam_directory/$1"
|
echo '#!/bin/sh' >> "$_cam_directory/$1"
|
||||||
# FIXME fails when run from parent directory (see mars for poss solution)
|
# FIXME fails when run from parent directory (see mars for poss solution)
|
||||||
echo "./launcher.sh \"$2\" "'"$1"' >> "$_cam_directory/$1"
|
echo '"$(pwd)"'"/cams/launcher.sh \"$2\" "'"$1"' >> "$_cam_directory/$1"
|
||||||
chmod +x "$_cam_directory/$1"
|
chmod +x "$_cam_directory/$1"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue