Skip to content

Commit

Permalink
fix: Fix missing shell for kubectl execution context
Browse files Browse the repository at this point in the history
  • Loading branch information
stmh committed Nov 3, 2022
1 parent 239b00d commit 0c02c3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utilities/Utilities.php
Expand Up @@ -180,7 +180,7 @@ public static function validateScriptCommands(array $commands, array $replacemen
}

return array_map(function ($r) {
return is_string($r) ? str_replace('\%', '%', $r) : "";
return is_string($r) ? str_replace('\%', '%', $r) : $r;
}, $commands);
}

Expand Down

0 comments on commit 0c02c3d

Please sign in to comment.