mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
10 lines
245 B
Bash
10 lines
245 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Get the directory of this script
|
|
SCRIPT_DIR="/opt/input"
|
|
ELECTRON_BIN="$SCRIPT_DIR/node_modules/.bin/electron"
|
|
SANDBOX="$SCRIPT_DIR/node_modules/electron/dist/chrome-sandbox"
|
|
|
|
# Launch the app
|
|
"$ELECTRON_BIN" "$SCRIPT_DIR"
|