diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2017-10-02 21:43:09 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2017-10-02 21:43:09 -0400 |
commit | 99a40b772cb87b03ddce47ec076d13e454ba7caa (patch) | |
tree | 649d77e0196f982a8b0a563650799d300f7f40d1 /projects | |
parent | 4a0331e0862782c78f7372c91e9e3d5d2a856906 (diff) | |
download | librebootfr-99a40b772cb87b03ddce47ec076d13e454ba7caa.tar.gz librebootfr-99a40b772cb87b03ddce47ec076d13e454ba7caa.zip |
Replace project_action call in depthcharge script
It seems like 'project_action_arguments' was the intended function to
use, as 'project_action' does not actually /carry out/ the action
given as its first argument.
Diffstat (limited to 'projects')
-rwxr-xr-x | projects/depthcharge/depthcharge | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/depthcharge/depthcharge b/projects/depthcharge/depthcharge index f7645092..fe64c7d9 100755 --- a/projects/depthcharge/depthcharge +++ b/projects/depthcharge/depthcharge @@ -76,7 +76,7 @@ build() { local arch=$( depthcharge_arch "$@" ) local device=$( depthcharge_device "$@" ) - project_action "checkout" "vboot" "devices" + project_action_arguments "checkout" "vboot" "devices" mkdir -p "$build_path" |