From 72a7a7e00d537c44eaf9db42c94a41940fe383c9 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Thu, 8 Mar 2018 14:25:28 +0100 Subject: [PATCH] Changed path to new submodule location. --- .gitmodules | 3 --- seasoned_api/src/pirate/pirateRepository.js | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitmodules b/.gitmodules index d564de1..2da9723 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ -[submodule "include/torrent_search"] - path = include/torrent_search - url = git@github.com:KevinMidboe/torrent_search.git [submodule "torrent_search"] path = torrent_search url = git@github.com:KevinMidboe/torrent_search.git diff --git a/seasoned_api/src/pirate/pirateRepository.js b/seasoned_api/src/pirate/pirateRepository.js index bce8288..c46fcfc 100644 --- a/seasoned_api/src/pirate/pirateRepository.js +++ b/seasoned_api/src/pirate/pirateRepository.js @@ -8,7 +8,7 @@ async function find(searchterm, callback) { args: [searchterm, '-s', 'jackett', '-f', '--print'], }; - PythonShell.run('../include/torrent_search/torrentSearch/search.py', options, callback); + PythonShell.run('../torrent_search/torrentSearch/search.py', options, callback); // PythonShell does not support return }