mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
10 lines
221 B
Bash
10 lines
221 B
Bash
#! @shell@
|
|
|
|
test -d ~/.blobby || {
|
|
mkdir ~/.blobby
|
|
cp -r "@out@/share/blobby"/* ~/.blobby
|
|
chmod u+w -R ~/.blobby
|
|
( cd ~/.blobby; for i in *.zip; do @unzip@/bin/unzip "$i"; done )
|
|
}
|
|
|
|
exec @out@/bin/blobby.bin "$@"
|