Commit 05c27885 authored by Cédric OLIVIER's avatar Cédric OLIVIER Committed by Pierre Smeyers
Browse files

fix: execute hook scripts with shebang shell

parent a67b05f9
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -271,7 +271,8 @@ stages:
    if [[ -f "$deployscript" ]]
    then
      log_info "--- deploy script (\\e[33;1m${deployscript}\\e[0m) found: execute"
      sh "$deployscript"
      chmod +x "$deployscript"
      "$deployscript"
    else
      log_error "--- no deploy script found: abort"
      exit 1
@@ -304,7 +305,8 @@ stages:
    if [[ -f "$cleanupscript" ]]
    then
      log_info "--- cleanup script (\\e[33;1m${cleanupscript}\\e[0m) found: execute"
      sh "$cleanupscript"
      chmod +x "$cleanupscript"
      "$cleanupscript"
    else
      log_error "--- no cleanup script found: abort"
      exit 1