Skip to content

Commit 6880927

Browse files
committed
Replace wrapper shell script with wrapper hack script
1 parent 909feda commit 6880927

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

bin/hh-codegen-verify-signatures

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,17 @@
1-
#!/bin/sh
2-
exec "$0.hack" "$@"
1+
#!/usr/bin/env hhvm
2+
/*
3+
* Copyright (c) 2015-present, Facebook, Inc.
4+
* All rights reserved.
5+
*
6+
* This source code is licensed under the MIT license found in the
7+
* LICENSE file in the root directory of this source tree.
8+
*
9+
*/
10+
11+
namespace Facebook\HackCodegen;
12+
13+
<<__EntryPoint>>
14+
function verify_signatures_main_UNSAFE(): noreturn {
15+
require_once(__FILE__.'.hack');
16+
verify_signatures_main();
17+
}

0 commit comments

Comments
 (0)