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