We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57c79f0 commit fb1c246Copy full SHA for fb1c246
Makefile
@@ -37,5 +37,8 @@ clean:
37
find -regex '.*\.pyc' -exec rm {} \;
38
find -regex '.*~' -exec rm {} \;
39
40
+run:
41
+ @./scripts/start_development_environment.sh
42
-.PHONY: test test-x doc clean test-workers
43
+
44
+.PHONY: test test-x doc clean test-workers run
start_development_environment.sh scripts/start_development_environment.sh
@@ -17,8 +17,7 @@
17
# You should have received a copy of the GNU General Public License
18
# along with PyPLN. If not, see <http://www.gnu.org/licenses/>.
19
20
-SCRIPT_PATH=$(dirname $(readlink -f $0))
21
-echo "$SCRIPT_PATH"
+SCRIPT_PATH=$(dirname $(readlink -f $0))/../ # get parent directory
22
23
# Adding the current directory to PYTHONPATH, the broker will be able to import
24
# pypln.backend even if the package is not installed
0 commit comments