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 4a8b202 commit 78dc347Copy full SHA for 78dc347
add
@@ -1,12 +1,13 @@
1
#!/bin/bash
2
-cd "$(dirname "$0")"
3
if [[ $# != 1 ]]; then
4
echo >&2 "Usage: $0 libc_filename"
5
exit 2
6
fi
+libc="$(readlink -f "$1")"
7
+cd "$(dirname "$0")"
8
9
. common/libc.sh
10
11
requirements_general || die "General requirements are not met. Please, refer to README.md for installation instructions"
12
requirements_local || die "Requirements for index a local libc are not met. Please, refer to README.md for installation instructions"
-add_local $1
13
+add_local "$libc"
0 commit comments