about summary refs log tree commit diff
path: root/src/ci
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2019-11-26 11:55:08 +0100
committerPietro Albini <pietro@pietroalbini.org>2019-12-30 14:56:48 +0100
commitae9ca096126cc626fcb503c84e6937478b9161c1 (patch)
treebf422f0ee2ec6542148a2ddb8c9c87e4a665b44f /src/ci
parentd9278f7ff65b3a4798348d2fc68278b25eaae864 (diff)
ci: fix wrong variable name in shared.sh's ciCommandAddPath
Diffstat (limited to 'src/ci')
-rw-r--r--src/ci/shared.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/shared.sh b/src/ci/shared.sh
index 98120f5dff9..0bfd7ff26cf 100644
--- a/src/ci/shared.sh
+++ b/src/ci/shared.sh
@@ -99,7 +99,7 @@ function ciCommandAddPath {
     if isAzurePipelines; then
         echo "##vso[task.prependpath]${path}"
     elif isGitHubActions; then
-        echo "::add-path::${value}"
+        echo "::add-path::${path}"
     else
         echo "ciCommandAddPath only works inside CI!"
         exit 1