mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-19 19:34:18 +08:00
14 lines
148 B
Bash
Executable File
14 lines
148 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
source `dirname "$0"`/config.sh
|
|
|
|
if [ $# = 0 ]
|
|
then
|
|
recipes="--all"
|
|
else
|
|
recipes="$@"
|
|
fi
|
|
|
|
repo unfetch $recipes
|