From d7a0382927fb8a68115b560f4fee7dca743068f8 Mon Sep 17 00:00:00 2001 From: Reid 'arrdem' McKenzie Date: Tue, 9 Nov 2021 11:36:33 -0700 Subject: [PATCH] Thread through the shebang= parameter --- zapp/zapp.bzl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zapp/zapp.bzl b/zapp/zapp.bzl index 5c35e74..6ee0160 100644 --- a/zapp/zapp.bzl +++ b/zapp/zapp.bzl @@ -209,6 +209,7 @@ def zapp_binary(name, test=False, compiler=None, zip_safe=True, + shebang=None, _rule=_zapp, **kwargs): """A self-contained, single-file Python program, with a .zapp file extension. @@ -265,6 +266,7 @@ def zapp_binary(name, prelude_points = prelude_points, zip_safe = zip_safe, wheels = [name + ".whls"], + shebang = shebang, )