Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit e003505

Browse files
committed
Fix shebangs
1 parent 7fe89ac commit e003505

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

fixed/73109.sh

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

33
rustc -Z validate-mir - <<EOF
44
fn main() {

ices/73021.sh

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

33
rustc --emit mir -Z mir-opt-level=2 - <<EOF
44
// build-pass

ices/73260.sh

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

33
rustc -Z save-analysis - << EOF
44
#![feature(const_generics)]

ices/73626.sh

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

33
rustc -Zunstable-options --pretty=expanded - << EOF
44
fn main(/*

ices/73860.sh

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

33
rustc -Zvalidate-mir - << EOF
44
fn main() {

0 commit comments

Comments
 (0)