mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-02-26 08:22:31 +00:00
AppImage: create fuse device node if it doesn't exist
This commit is contained in:
parent
7eeaa40f62
commit
cbc3e7515c
@ -45,6 +45,11 @@ export LDFLAGS="-Wl,-z,relro -Wl,--as-needed -Wl,-rpath,XORIGIN/../lib"
|
||||
TOP="$(readlink -f "$0")"
|
||||
TOP="${TOP%/*}"
|
||||
|
||||
if [[ ! -c /dev/fuse ]]; then
|
||||
sudo mknod /dev/fuse c 10 229
|
||||
sudo chmod 0666 /dev/fuse
|
||||
fi
|
||||
|
||||
mkdir -p $APP
|
||||
cd $APP
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user