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 @@ -25,7 +25,7 @@ up_dolidev() {
25
25
configure_dolibarr
26
26
27
27
echo " Starting the Dolibarr instance."
28
- (source ./.env && cd docker && docker-compose up -d --build > /dev/null 2>&1 )
28
+ (source ./.env && cd docker && docker-compose up -d --build)
29
29
30
30
if [[ " $SEED " -eq 1 ]]; then
31
31
echo " Seeding the database."
@@ -63,10 +63,10 @@ down_dolidev() {
63
63
64
64
if [ " $RM " -eq 0 ]; then
65
65
echo " Stopping the Dolibarr instance."
66
- (cd docker && docker-compose down > /dev/null 2>&1 )
66
+ (cd docker && docker-compose down)
67
67
else
68
68
echo " Removing the Dolibarr instance."
69
- (cd docker && docker-compose down -v > /dev/null 2>&1 )
69
+ (cd docker && docker-compose down)
70
70
71
71
echo " Wipping files on disk."
72
72
rm -rf dolibarr
@@ -79,13 +79,13 @@ install_dolibarr() {
79
79
(
80
80
cd dolibarr
81
81
if [ " $2 " -eq 1 ]; then
82
- git pull --rebase --autostash > /dev/null 2>&1
82
+ git pull --rebase --autostash
83
83
fi
84
- git checkout " $1 " > /dev/null 2>&1
84
+ git checkout " $1 "
85
85
)
86
86
else
87
87
echo " Installing Dolibarr v$1 from $DOLIBARR_URL into ./dolibarr"
88
- git clone -b " $1 " " $DOLIBARR_URL " dolibarr > /dev/null 2>&1
88
+ git clone -b " $1 " " $DOLIBARR_URL " dolibarr
89
89
fi
90
90
91
91
# Create documents folder if missing
You can’t perform that action at this time.
0 commit comments