diff --git a/command_that_causes_error.sh b/command_that_causes_error.sh new file mode 100755 index 0000000..bff3441 --- /dev/null +++ b/command_that_causes_error.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +pushd "$(dirname "$0")" >&/dev/null + +set -v + +/usr/bin/g++ -I./src -Wall -Wextra -Wpedantic -O0 -g -o ECTest.cpp.o -c ./src/test/ECTest.cpp + +set +v + +popd >&/dev/null