mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-10 15:26:18 -04:00
5 lines
213 B
Bash
Executable file
5 lines
213 B
Bash
Executable file
#!/usr/bin/env bash
|
|
installdir=${1:-/usr/lib/firefox/browser/extensions}
|
|
xpi=web-ext-artifacts/$(ls -t web-ext-artifacts/ | head -n1)
|
|
install -Dm644 "$xpi" "$installdir"/"$(scripts/get_id_from_xpi.sh "$xpi")".xpi
|