File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 11#! /bin/sh
22
3+ # #######################################################################
4+ # DEBUG AND LOGGING
5+
36set -eu
47
58isDebugMode () {
@@ -23,6 +26,9 @@ logWarning() {
2326 echo " \033[93m⚠\033[0m $1 "
2427}
2528
29+ # #######################################################################
30+ # # PRELIMINARY CHECKS
31+
2632checkDependency () {
2733 if ! [ -x " $( command -v $1 ) " ]; then
2834 throwError " Missing dependency: I could not find the executable '$1 '"
@@ -39,6 +45,9 @@ checkDependency "tar"
3945checkDependency " touch"
4046checkDependency " wget"
4147
48+ # #######################################################################
49+ # # IDENTIFY AND INSTALL THE CORRECT STDLIB VERSION
50+
4251# Pick the Agda executable to analyse
4352# unless the caller has specified one
4453if [ -z ${AGDA_EXEC-} ]; then
You can’t perform that action at this time.
0 commit comments