Skip to content

Commit b008ff4

Browse files
committed
Remove the build all tools option and fix grammar
1 parent 462654a commit b008ff4

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ If you have built using CMake, you can also run the poisson solver by directly c
7575
./build/fortran-tooling-poisson <path_to_mesh_file>
7676
```
7777

78-
If you have built using FPM, you can run the mesh generator via FPM
78+
If you have built using FPM, you can also run the mesh generator via FPM
7979
```sh
8080
fpm run poisson -- <path_to_mesh_file>
8181
```

build.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ help() {
1515
echo " -c Clean all build artifacts."
1616
echo " -m Build via cmake."
1717
echo " -f Build via fpm."
18-
echo " -b Build with all build tools."
1918
echo " -s Skip building cmake tests"
2019
echo " -p Path to pFUnit/installed directory."
2120
echo " -t Run tests."
@@ -30,16 +29,13 @@ then
3029
fi
3130

3231
# parse input arguments
33-
while getopts "hcmfbtp:s" opt
32+
while getopts "hcmftp:s" opt
3433
do
3534
case ${opt} in
3635
h ) help;;
3736
c ) clean_build=true;;
3837
m ) build_cmake=true;;
3938
f ) build_fpm=true;;
40-
b )
41-
build_cmake=true
42-
build_fpm=true;;
4339
s ) build_tests=false;;
4440
p ) PFUNIT_INSTALLED_PATH="${OPTARG}";;
4541
t ) run_tests=true;;

0 commit comments

Comments
 (0)