Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change outdated *make* syntax #213

Merged
merged 1 commit into from
Aug 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ running with no mess, no fuss:
git clone https://github.com/FNNDSC/ChRIS_ultron_backend
cd ChRIS_ultron_backend
# Run full CUBE instantiation with tests:
*unmake* ; sudo rm -fr FS; rm -fr FS; *make*
./unmake.sh ; sudo rm -fr FS; rm -fr FS; ./make.sh
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree with these changes, *make* syntax is outdated copied-and-pasted stuff.


# Skip unit and integration tests and the intro:
*unmake* ; sudo rm -fr FS; rm -fr FS; *make* -U -I -s
./unmake.sh ; sudo rm -fr FS; rm -fr FS; ./make.sh -U -I -s
```
The resulting instance uses the default Django development server and therefore is not suitable for production.

Expand Down
4 changes: 2 additions & 2 deletions make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
#
# Run full CUBE instantiation with tests:
#
# unmake.sh ; sudo rm -fr FS; rm -fr FS; make.sh
# ./unmake.sh ; sudo rm -fr FS; rm -fr FS; ./make.sh
#
# Skip unit and integration tests and the intro:
#
# unmake.sh ; sudo rm -fr FS; rm -fr FS; make.sh -U -I -s
# ./unmake.sh ; sudo rm -fr FS; rm -fr FS; ./make.sh -U -I -s
#
# ARGS
#
Expand Down