зеркало из https://github.com/mozilla/gecko-dev.git
12 строки
283 B
Bash
Executable File
12 строки
283 B
Bash
Executable File
#!/bin/bash
|
|
# Script to auto-generate the different archive types under the archives directory.
|
|
|
|
cd archives
|
|
|
|
rm archive.*
|
|
|
|
tar cf archive.tar -C reference .
|
|
gzip -fk archive.tar >archive.tar.gz
|
|
bzip2 -fk archive.tar >archive.tar.bz2
|
|
cd reference && zip ../archive.zip -r * && cd ..
|