1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Updated scripts shebang
Updated wsh script to use proper shebang corresponding
to WCC installation.
Author: Philippe Thierry
Forwarded: https://github.com/endrazine/wcc/issues/51
Last-Update: 2025-10-07
Index: wcc/src/wsh/scripts/main.wsh
===================================================================
--- wcc.orig/src/wsh/scripts/main.wsh
+++ wcc/src/wsh/scripts/main.wsh
@@ -1,3 +1,5 @@
+#!/usr/bin/wsh
+
local ffi = require("ffi")
ffi.cdef[[
unsigned long compressBound(unsigned long sourceLen);
|