Browse Source

set some runtime script interpreters to /bin/sh

nothing in these scripts make use of bash features, and they are
actually posix sh, so use /bin/sh instead.
pull/1780/head
parent
commit
3604086cb4
13 changed files with 13 additions and 13 deletions
  1. +1
    -1
      data/carla
  2. +1
    -1
      data/carla-bridge-lv2-modgui
  3. +1
    -1
      data/carla-control
  4. +1
    -1
      data/carla-database
  5. +1
    -1
      data/carla-jack-multi
  6. +1
    -1
      data/carla-jack-patchbayplugin
  7. +1
    -1
      data/carla-jack-single
  8. +1
    -1
      data/carla-libdir
  9. +1
    -1
      data/carla-osc-gui
  10. +1
    -1
      data/carla-patchbay
  11. +1
    -1
      data/carla-rack
  12. +1
    -1
      data/carla-settings
  13. +1
    -1
      data/copy-zynaddsubfx

+ 1
- 1
data/carla View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-bridge-lv2-modgui View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-control View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-database View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-jack-multi View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-jack-patchbayplugin View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

if [ -f "$(dirname ${0})/carla-utils.pc" ]; then
cd "$(dirname ${0})/.."


+ 1
- 1
data/carla-jack-single View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-libdir View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
# small script that only prints carla's libdir.
# can be used to detect if carla is installed, and where to find its libcarla_standalone2.so file



+ 1
- 1
data/carla-osc-gui View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

set -e



+ 1
- 1
data/carla-patchbay View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-rack View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/carla-settings View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

PYTHON=$(which python3 2>/dev/null)



+ 1
- 1
data/copy-zynaddsubfx View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

set -e



Loading…
Cancel
Save