Skip to content

Commit 9eb2316

Browse files
authored
Merge branch 'master' into fix/silent_remote_streams
2 parents af236cb + 54afcee commit 9eb2316

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

scripts/APPIMAGE_INSTALL.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
#!/bin/bash
1+
#!/usr/bin/env sh
22

33
# exit on error
44
set -e
55

66
# Move to script's directory
7-
SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
7+
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
88
cd "${SCRIPT_DIR}"
99

1010
#add .desktop file (which should allow most DE's easy access to the program

scripts/DYNAMIC_INSTALL.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
#!/bin/bash
1+
#!/usr/bin/env sh
22

33
# exit on error
44
set -e
55

66
# Move to script's directory
7-
SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
7+
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
88
cd "${SCRIPT_DIR}"
99

1010
#add .desktop file (which should allow most DE's easy access to the program

0 commit comments

Comments
 (0)