We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a211f5 commit 3f02254Copy full SHA for 3f02254
testsuite/ada_lsp/project_config.alire/.alr_build
@@ -0,0 +1 @@
1
+Dummy output of `alr build` command
testsuite/ada_lsp/project_config.alire/alr
@@ -1,7 +1,10 @@
-#!/bin/sh
+#!/bin/bash
2
set -e
3
# A dummy Alire replacement for testing purposes
4
-while [ $# -gt 1 ] ; do shift ; done
+
5
+# Skip parameters starting with '-' until the Alire action is reached
6
+while [ $# -gt 1 ] && [[ $1 == -* ]] ; do shift ; done
7
8
DIR=`cd $(dirname $0); pwd`
9
GNAT=$(dirname `which gnat`)
10
sed -e "s#\${DIR}#${DIR}#g" -e "s#\${GNAT}#${GNAT}#g" ${DIR}/.alr_$1
0 commit comments