Skip to content

Commit 8397ee4

Browse files
author
Pedro Crespo
committed
Changed extension to bash of some of the scripts
1 parent 4e9d4bc commit 8397ee4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/check_requirements.sh renamed to scripts/check_requirements.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
# lists all python packages used throughout all the repository that are not tied to a specific version
44

5-
find . \( -name "requirements.txt" -o -name "common.txt" -o -name "devel.txt" -o -name "prod.txt" \) | xargs -I % grep -v "\-r " % | sort |uniq | awk '$0 !~ /==/'
5+
find . \( -name "requirements.txt" -o -name "common.txt" -o -name "devel.txt" -o -name "prod.txt" \) | xargs -I % grep -v "\-r " % | sort |uniq | awk '$0 !~ /==/'

scripts/upgrade_test_requirements.sh renamed to scripts/upgrade_test_requirements.bash

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
for path_to_req_test in $(find ../ -type f -name '_test.txt')
77
do
8-
rm --verbose $path_to_req_test
9-
make --directory $(dirname -- $path_to_req_test)
8+
rm --verbose "$path_to_req_test"
9+
make --directory "$(dirname -- "$path_to_req_test")"
1010
done
File renamed without changes.

0 commit comments

Comments
 (0)