Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion format.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

find -name '*.c' -exec uncrustify -c .uncrustify.cfg --no-backup {} \;
find -name '*.cpp' -exec uncrustify -c .uncrustify.cfg --no-backup {} \;
Expand Down
4 changes: 3 additions & 1 deletion fuzzing/scripts/oss-fuzz-build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash -eu
#!/usr/bin/env bash
#
# Copyright (c) 2023 Cedalo GmbH
#
Expand All @@ -16,6 +16,8 @@
# Contributors:
# Roger Light - initial implementation and documentation.

set -eu

export CC="${CC:-clang}"
export CXX="${CXX:-clang++}"
export CFLAGS
Expand Down
4 changes: 2 additions & 2 deletions fuzzing/scripts/oss-fuzz-dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash -eu
#!/usr/bin/env bash
#
# Copyright (c) 2023 Cedalo GmbH
#
Expand All @@ -16,7 +16,7 @@
# Contributors:
# Roger Light - initial implementation and documentation.

set -e
set -eu

# Note that sqlite3 is required as a build dep of a plugin which is not
# currently part of fuzz testing. Once it is part of fuzz testing, sqlite will
Expand Down
2 changes: 1 addition & 1 deletion test/client/test-ws.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Very basic client testing.

Expand Down
2 changes: 1 addition & 1 deletion test/client/test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Very basic client testing.

Expand Down