mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-01 13:09:48 +09:00
11 lines
239 B
Bash
Executable File
11 lines
239 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This script runs "make f.recipe" and "cargo update" in the specified recipe
|
|
|
|
recipe_name="$1"
|
|
recipe_path=$(find recipes -name "$recipe_name" -maxdepth 4)
|
|
|
|
make f."$recipe_name"
|
|
cd "$recipe_path"/source
|
|
cargo update
|