mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
- Remove trailing semicolons. They're not needed in shell scripts - Don't create default XDG_DATA_HOME (<HOME>/.local/share) the code should work equally well if that directory doesn't exist and so not creating it tests another part of the code
9 lines
193 B
Bash
9 lines
193 B
Bash
#!/bin/bash -e
|
|
|
|
# -e above so that if any command has an exit code != 0, this script will
|
|
# exit immediately.
|
|
|
|
export GTEST_ROOT=/gtest/googletest GMOCK_ROOT=/gtest/googlemock
|
|
|
|
../commonbuild
|