Skip to content

Commit

Permalink
ben change
Browse files Browse the repository at this point in the history
  • Loading branch information
InvincibleRMC committed Nov 20, 2023
1 parent f2f55b1 commit 5a2b82a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pi/pi_main/pi_main/install_on_boot.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def main() -> None:
file_location = pathlib.Path(__file__).parent.resolve()
udev_script = os.path.join(file_location, 'udev_copy.py')

cmd = ['/usr/bin/sudo'] + ['/usr/bin/python3'] + [udev_script] + [pi_main_share]
cmd = ['/usr/bin/sudo', '/usr/bin/python3', udev_script, pi_main_share]

try:
p = subprocess.run(cmd, capture_output=True, check=True)
Expand Down

0 comments on commit 5a2b82a

Please sign in to comment.