We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5caddf commit 0b7cccdCopy full SHA for 0b7cccd
helpers/reload_dev.sh
@@ -1,3 +1,4 @@
1
+#!/bin/bash
2
# Recompiles and reloads the addon to simplify development
3
# Assumes that you already have Samba installed and configured
4
@@ -6,6 +7,14 @@ if [ "$(id -u)" -ne 0 ]; then
6
7
exit 1
8
fi
9
10
+
11
+if [ -f Makefile ]; then
12
+ echo "The configure script has already been run."
13
+else
14
+ echo "The configure script has not been run yet. Running it now..."
15
+ ./configure --with-samba-source=$HOME/samba-4.17.12/source3
16
+fi
17
18
make clean
19
make
20
0 commit comments