Skip to content

Commit db2cf0d

Browse files
committed
Use touch [file] instead of > [file] in scripts
1 parent fc59568 commit db2cf0d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

utils/createConfigFileForTesting

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
> config_temp.yaml
2+
touch config_temp.yaml
33

44
prefix=`./utils/project-prefix`
55

utils/setupTestEnvCicd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# setup jars, dependencies and version
44

55
./gradlew clean
6-
> version_temp.yaml
6+
touch version_temp.yaml
77

88
prefix=`./utils/project-prefix`
99

utils/setupTestEnvLocal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# setup jars, dependencies and version
33

44
./gradlew clean
5-
> version_temp.yaml
5+
touch version_temp.yaml
66

77
prefix=`./utils/project-prefix`
88

0 commit comments

Comments
 (0)