We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ada954a + 25a9642 commit 576189bCopy full SHA for 576189b
3 files changed
.gitignore
@@ -1,4 +1,6 @@
1
/rel/linc/
2
+# sys.config.orig is version controlled; sys.config is installation specific.
3
+/rel/files/sys.config
4
/apps/*/ebin/
5
/apps/*/.eunit/
6
/apps/*/doc/
rel/files/sys.config rel/files/sys.config.origrel/files/sys.config renamed to rel/files/sys.config.orig
rel/rebar.config
@@ -0,0 +1,15 @@
+%% -*- erlang -*-
+{pre_hooks,
+ [{generate,
+ "sh -c 'test -f files/sys.config || (echo "
+ "\"The configuration file rel/files/sys.config does not exist.\n"
+ "You can create it in two ways:\n"
7
+ "\n"
8
+ "1. Either run scripts/config_gen with appropriate arguments\n"
9
+ " and save its output in rel/files/sys.config,\n"
10
11
+ "2. Or copy rel/files/sys.config.orig to rel/files/sys.config\n"
12
+ " and edit it by hand to fit your setup.\n"
13
14
+ "Then run \\\"make rel\\\" again.\n\"; exit 1)'"
15
+ }]}.
0 commit comments