mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
11 lines
211 B
Bash
11 lines
211 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 )
|
|
}
|
|
|
|
@out@/bin/blobby.bin
|