Skip to content

Commit

Permalink
SRE-2229 utils: Replace /bin/sh with /bin/bash in githooks (#14457)
Browse files Browse the repository at this point in the history
Fixed an issue where /bin/sh pointing to /bin/dash instead of /bin/bash was causing issues on ubuntu 22.04

Signed-off-by: Jan Zarzycki <jan.zarzycki@intel.com>
  • Loading branch information
jzarzycki authored May 29, 2024
1 parent 86cfda3 commit 1d41e05
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion utils/githooks/pre-commit.d/30-Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#
# Copyright 2023-2024 Intel Corporation.
#
Expand Down
2 changes: 1 addition & 1 deletion utils/githooks/pre-commit.d/71-flake.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#
# Copyright 2022-2024 Intel Corporation.
#
Expand Down
2 changes: 1 addition & 1 deletion utils/githooks/pre-commit.d/72-pylint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#
# Copyright 2022-2024 Intel Corporation.
#
Expand Down
2 changes: 1 addition & 1 deletion utils/githooks/pre-commit.d/73-ftest.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#
# Copyright 2024 Intel Corporation.
#
Expand Down

0 comments on commit 1d41e05

Please sign in to comment.