Skip to content
Snippets Groups Projects
Commit e9ba2e13 authored by Jean-Baptiste Keck's avatar Jean-Baptiste Keck
Browse files

fixed argcount

parent fb3028ce
No related branches found
No related tags found
No related merge requests found
Pipeline #
#!/bin/bash
set -e
if [ $# -ne 5 ]; then
if [ $# -ne 4 ]; then
echo "Usage ./build build_folder CC CXX FC"
exit 1
fi
......
#!/bin/bash
set -e
if [ $# -ne 4 ]; then
if [ $# -ne 5 ]; then
echo "Usage ./config build_folder install_folder CC CXX FC"
exit 1
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment