Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
e0bc5efa
Unverified
Commit
e0bc5efa
authored
Aug 17, 2023
by
Mark Tyneway
Committed by
GitHub
Aug 17, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6854 from EspressoSystems/fix-shebangs
Make shebangs more portable
parents
5d1a445e
0e9101fe
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
+9
-9
Makefile
op-bindings/Makefile
+1
-1
trace.sh
op-chain-ops/crossdomain/testdata/trace.sh
+1
-1
charlie.sh
op-challenger/scripts/alphabet/charlie.sh
+1
-1
init_game.sh
op-challenger/scripts/alphabet/init_game.sh
+1
-1
mallory.sh
op-challenger/scripts/alphabet/mallory.sh
+1
-1
parallel.sh
op-challenger/scripts/parallel.sh
+1
-1
visualize.sh
op-challenger/scripts/visualize.sh
+1
-1
slither.sh
packages/contracts-bedrock/scripts/slither.sh
+1
-1
verify-foundry-install.sh
packages/contracts-bedrock/scripts/verify-foundry-install.sh
+1
-1
No files found.
op-bindings/Makefile
View file @
e0bc5efa
SHELL
:=
/
bin/
bash
SHELL
:=
/
usr/bin/env
bash
pkg
:=
bindings
pkg
:=
bindings
monorepo-base
:=
$(
shell
dirname
$
(
realpath
.
))
monorepo-base
:=
$(
shell
dirname
$
(
realpath
.
))
...
...
op-chain-ops/crossdomain/testdata/trace.sh
View file @
e0bc5efa
#!/
bin/
bash
#!/
usr/bin/env
bash
HASH
=
$1
HASH
=
$1
...
...
op-challenger/scripts/alphabet/charlie.sh
View file @
e0bc5efa
#!/
bin/
bash
#!/
usr/bin/env
bash
set
-euo
pipefail
set
-euo
pipefail
SOURCE_DIR
=
$(
cd
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
&&
pwd
)
SOURCE_DIR
=
$(
cd
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
&&
pwd
)
...
...
op-challenger/scripts/alphabet/init_game.sh
View file @
e0bc5efa
#!/
bin/
bash
#!/
usr/bin/env
bash
set
-euo
pipefail
set
-euo
pipefail
...
...
op-challenger/scripts/alphabet/mallory.sh
View file @
e0bc5efa
#!/
bin/
bash
#!/
usr/bin/env
bash
set
-euo
pipefail
set
-euo
pipefail
SOURCE_DIR
=
$(
cd
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
&&
pwd
)
SOURCE_DIR
=
$(
cd
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
&&
pwd
)
...
...
op-challenger/scripts/parallel.sh
View file @
e0bc5efa
#!/
bin/
bash
#!/
usr/bin/env
bash
# set -x
# set -x
...
...
op-challenger/scripts/visualize.sh
View file @
e0bc5efa
#!/
bin/
bash
#!/
usr/bin/env
bash
set
-euo
pipefail
set
-euo
pipefail
...
...
packages/contracts-bedrock/scripts/slither.sh
View file @
e0bc5efa
#!/
bin/
bash
#!/
usr/bin/env
bash
rm
-rf
artifacts forge-artifacts
rm
-rf
artifacts forge-artifacts
...
...
packages/contracts-bedrock/scripts/verify-foundry-install.sh
View file @
e0bc5efa
#!/
bin/
bash
#!/
usr/bin/env
bash
if
!
command
-v
forge &> /dev/null
if
!
command
-v
forge &> /dev/null
then
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment