Skip to content

Commit d7e66ba

Browse files
committed
added commands for iso output
1 parent 8c1bb85 commit d7e66ba

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

Diff for: toiso/command.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818

1919
if [ "$1" != "-q" ]
2020
then
21-
cat "$iso_image"
21+
./iso.sh
2222
fi

Diff for: toiso/iso.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
set -e
3+
4+
cd "`dirname \"$0\"`"
5+
source configuration.sh
6+
7+
cat "$iso_image"

Diff for: toiso/iso_path.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
set -e
3+
4+
cd "`dirname \"$0\"`"
5+
source configuration.sh
6+
7+
echo -n "$iso_image"

0 commit comments

Comments
 (0)