Skip to content

Commit 23e0342

Browse files
authored
Merge pull request #344 from sourceryinstitute/issue-341-delete-STATUS.md
Issue 341 delete status.md
2 parents 6cff308 + c87b411 commit 23e0342

File tree

3 files changed

+14
-228
lines changed

3 files changed

+14
-228
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ Please see the [CONTRIBUTING.md] file.
7575
Status
7676
------
7777

78-
Please see the [STATUS.md] file.
78+
A list of open issues can be viewed on the
79+
[issues page](https://github.com/sourcery institute/opencoarrays/issues).
7980

8081
Support
8182
-------
@@ -137,7 +138,6 @@ to aid in development efforts.
137138
[INSTALL.md]: ./INSTALL.md
138139
[GASNet]: http://gasnet.lbl.gov
139140
[CONTRIBUTING.md]: ./CONTRIBUTING.md
140-
[STATUS.md]: ./STATUS.md
141141
[GETTING_STARTED.md]: ./GETTING_STARTED.md
142142
[Google Groups]: https://groups.google.com
143143
[Google Group]: https://groups.google.com/forum/#!forum/opencoarrays

STATUS.md

Lines changed: 0 additions & 226 deletions
This file was deleted.

src/tests/installation/installation-scripts.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,18 @@
7979
# (3) Parse the usage information (default usage file name: current file's name with -usage appended).
8080
# (4) Parse the command line using the usage information.
8181

82+
set -o errtrace
83+
84+
# requires `set -o errtrace`
85+
__b3bp_err_report() {
86+
local error_code
87+
error_code=${?}
88+
error "Error in ${__file} in function ${1} on line ${2}"
89+
exit ${error_code}
90+
}
91+
# Uncomment the following line for always providing an error backtrace
92+
trap '__b3bp_err_report "${FUNCNAME:-.}" ${LINENO}' ERR
93+
8294
### Start of boilerplate -- do not edit this block #######################
8395
export OPENCOARRAYS_SRC_DIR="${OPENCOARRAYS_SRC_DIR:-${PWD%/}/../../..}"
8496
if [[ ! -f "${OPENCOARRAYS_SRC_DIR}/src/libcaf.h" ]]; then

0 commit comments

Comments
 (0)