From 21a8a3af73359582c50ee7851eb3938c81ab778b Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sat, 3 Feb 2024 14:09:16 -0800 Subject: [PATCH] Fixed Python path in client. --- client/fabric | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/fabric b/client/fabric index e48e3eb..e639468 100755 --- a/client/fabric +++ b/client/fabric @@ -1,4 +1,4 @@ -#!/Users/daniel/Cloud/Development/fabric/client/.venv/bin/python3 +#!/usr/bin/env python3 from utils import Standalone, Update, Setup import argparse @@ -34,11 +34,11 @@ if __name__ == "__main__": parser.add_argument( "--list", "-l", help="List available patterns", action="store_true" ) - parser.add_argument( - "--update", "-u", help="Update patterns", action="store_true") + parser.add_argument("--update", "-u", help="Update patterns", action="store_true") parser.add_argument("--pattern", "-p", help="The pattern (prompt) to use") parser.add_argument( - "--setup", help="Set up your fabric instance", action="store_true") + "--setup", help="Set up your fabric instance", action="store_true" + ) args = parser.parse_args() home_holder = os.path.expanduser("~")