Skip to content

Commit 69072f7

Browse files
committed
Clean up and fix Python and Shell shebang lines
While many modern shells are forgiving, a space between #! and the path is an unnecessary risk
1 parent b1e88ae commit 69072f7

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env bash
1+
#!/usr/bin/env bash
22
# -----------------------------------------------------------------------------------
33
#
44
# Licensed to the Apache Software Foundation (ASF) under one or more

src/Lucene.Net/Util/Packed/gen_BulkOperation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#!/usr/bin/env python
22

33
# Licensed to the Apache Software Foundation (ASF) under one or more
44
# contributor license agreements. See the NOTICE file distributed with

src/Lucene.Net/Util/Packed/gen_Direct.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#!/usr/bin/env python
22

33
# Licensed to the Apache Software Foundation (ASF) under one or more
44
# contributor license agreements. See the NOTICE file distributed with

src/Lucene.Net/Util/Packed/gen_Packed64SingleBlock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#!/usr/bin/env python
22

33
# Licensed to the Apache Software Foundation (ASF) under one or more
44
# contributor license agreements. See the NOTICE file distributed with

src/Lucene.Net/Util/Packed/gen_PackedThreeBlocks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#!/usr/bin/env python
22

33
# Licensed to the Apache Software Foundation (ASF) under one or more
44
# contributor license agreements. See the NOTICE file distributed with

0 commit comments

Comments
 (0)