| author | |
| committer | |
| log | daa3e0bbb4bcd3f79d5e20f574b5adffc07be7d0 |
| tree | 367fcc56866d96194a9d5fa75ea557238d459050 |
| parent | e81fda982372061fca56c7e43d1df1653446d2a8 |
2 files changed, 4 insertions(+), 4 deletions(-)
ci/srht/on_master_success+2-2| ... | ... | @@ -15,12 +15,12 @@ VERSION="$1" |
| 15 | 15 | OAUTH_TOKEN="$2" |
| 16 | 16 | YML_FILE="tmp.yml" |
| 17 | 17 | |
| 18 | if [[ -z "$VERSION" ]]; then | |
| 18 | if [ -z "$VERSION" ]; then | |
| 19 | 19 | echo "missing VERSION parameter" |
| 20 | 20 | exit 1 |
| 21 | 21 | fi |
| 22 | 22 | |
| 23 | if [[ -z "$OAUTH_TOKEN" ]]; then | |
| 23 | if [ -z "$OAUTH_TOKEN" ]; then | |
| 24 | 24 | echo "missing OAUTH_TOKEN parameter" |
| 25 | 25 | exit 1 |
| 26 | 26 | fi |
ci/srht/update-download-page.zig+2-2| ... | ... | @@ -74,7 +74,7 @@ fn render( |
| 74 | 74 | try writer.writeAll(trimmed); |
| 75 | 75 | } |
| 76 | 76 | } else { |
| 77 | std.debug.warn("line {d}: missing variable: {s}\n", .{ line, var_name }); | |
| 77 | std.debug.print("line {d}: missing variable: {s}\n", .{ line, var_name }); | |
| 78 | 78 | try writer.writeAll("(missing)"); |
| 79 | 79 | } |
| 80 | 80 | state = State.EndBrace; |
| ... | ... | @@ -86,7 +86,7 @@ fn render( |
| 86 | 86 | state = State.Start; |
| 87 | 87 | }, |
| 88 | 88 | else => { |
| 89 | std.debug.warn("line {d}: invalid byte: '0x{x}'", .{ line, byte }); | |
| 89 | std.debug.print("line {d}: invalid byte: '0x{x}'", .{ line, byte }); | |
| 90 | 90 | std.process.exit(1); |
| 91 | 91 | }, |
| 92 | 92 | }, |