Skip to content

Conversation

@yurekami
Copy link
Contributor

Summary

Fixed the shebang position in scripts/run-mimo-7B-rl-eagle.sh.

Problem

The script had an empty line before the shebang (#!/bin/bash). The shebang must be on the very first line of a script for the operating system to recognize it as an executable script interpreter directive.

With the empty line, running the script directly (./run-mimo-7B-rl-eagle.sh) would fail to use bash as the interpreter.

Fix

Removed the empty first line so the shebang is now correctly on line 1.

🤖 Generated with Claude Code

The shebang (#!/bin/bash) must be on the very first line of a script
for the operating system to recognize it as an executable script.
The script had an empty line before the shebang which could cause
issues when running the script directly (e.g., ./run-mimo-7B-rl-eagle.sh).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
@zhuzilin zhuzilin closed this Dec 30, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants