Commit 8b8568ed authored by Damian Johnson's avatar Damian Johnson
Browse files

Triggering deb-build logic when in "release_deb"

The deb-prep.sh script makes a release_deb directory in which the build takes
place. Triggering off of tor-arm is insufficient to catch all of the calls to
setup.py while making a deb, causing it to error from TorCtl being missing.
parent 152f8511
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ from distutils.core import setup

isDebInstall = False
for arg in sys.argv:
  if "tor-arm" in arg:
  if "tor-arm" in arg or "release_deb" in arg:
    isDebInstall = True
    break