Skip to content

Commit fe9de08

Browse files
authored
test: fix user_name retrieval for CI (#525)
1 parent dc6cda6 commit fe9de08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/smoketest/get_username.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
: ${CI:=""}
44

5-
if [ -z "$CI" ]; then
5+
if [ "$CI" != "" ]; then
66
user_name="github-actions"
77
# The gh command is faster and not as hacky as the fallback solution
88
elif which gh >/dev/null; then

0 commit comments

Comments
 (0)