From: Armaan Bhojwani Date: Wed, 3 Feb 2021 16:35:04 +0000 (-0500) Subject: Switch bin lightcards to python from POSIX X-Git-Tag: v0.6.0~47 X-Git-Url: https://git.armaanb.net/?p=lightcards.git;a=commitdiff_plain;h=c741940bce68ca0a8f812c12e7d0fb7710088c9d Switch bin lightcards to python from POSIX --- diff --git a/bin/lightcards b/bin/lightcards index 10a1657..fec8f88 100755 --- a/bin/lightcards +++ b/bin/lightcards @@ -1,2 +1,5 @@ -#!/usr/bin/env sh -python3 -m lightcards ${@} +#!/usr/bin/env python + +import lightcards + +lightcards.lightcards.main()