File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 34
34
case $1 in
35
35
start)
36
36
echo " Attempting to start the service..."
37
- sh $SCRIPT_DIR /start.sh
37
+ bash $SCRIPT_DIR /start.sh
38
38
39
39
# Check if start.sh was successful
40
40
if [ $? -eq 0 ]; then
41
41
echo " start.sh executed successfully. Running yaci-cli.sh..."
42
42
first_arg=" $1 "
43
43
shift
44
- sh $SCRIPT_DIR /yaci-cli.sh " $@ "
44
+ bash $SCRIPT_DIR /yaci-cli.sh " $@ "
45
45
else
46
46
echo " start.sh failed. Not executing yaci-cli.sh."
47
47
fi
48
48
;;
49
49
stop)
50
50
echo " Stopping the service..."
51
- sh $SCRIPT_DIR /stop.sh
51
+ bash $SCRIPT_DIR /stop.sh
52
52
;;
53
53
ssh)
54
54
echo " ssh to Devkit container..."
55
- sh $SCRIPT_DIR /ssh.sh
55
+ bash $SCRIPT_DIR /ssh.sh
56
56
;;
57
57
info)
58
58
echo " Info of Devkit"
59
- sh $SCRIPT_DIR /info.sh
59
+ bash $SCRIPT_DIR /info.sh
60
60
;;
61
61
cli)
62
62
echo " Run cardano-cli in Devkit container..."
63
63
# Discard the first argument
64
64
first_arg=" $1 "
65
65
shift
66
- sh $SCRIPT_DIR //cardano-cli.sh " $@ "
66
+ bash $SCRIPT_DIR //cardano-cli.sh " $@ "
67
67
;;
68
68
version)
69
69
# Show version information
You can’t perform that action at this time.
0 commit comments