We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 199c378 commit 1adb6eeCopy full SHA for 1adb6ee
docker/build.sh
@@ -1,4 +1,4 @@
1
#!/bin/bash
2
3
-#docker build -t mktechdocs:0.0.7 .
4
-docker build --no-cache -t mktechdocs:0.0.7 .
+#docker build -t mktechdocs:0.0.8 .
+docker build --no-cache -t mktechdocs:0.0.8 .
docker/docker-entry.sh
@@ -2,13 +2,9 @@
(
cd /project
5
- if [[ ! -r mktechdocs.conf ]] ; then
6
- mktechdocs init <<< $(echo y)
7
- RV=$?
8
- else
9
- mktechdocs
10
11
- fi
+ # We add the echo y business because mktechdocs confirms inits
+ mktechdocs $@ <<< $(echo y)
+ RV=$?
12
exit $RV
13
)
14
RV=$? ; [[ $RV != 0 ]] && exit $RV
0 commit comments