Skip to content

Commit

Permalink
Adjust shebang
Browse files Browse the repository at this point in the history
  • Loading branch information
metavee committed Jul 30, 2024
1 parent 3bae73f commit a2441b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,6 @@ jobs:

- name: Install NASM
uses: ilammy/setup-nasm@v1

- name: Verify NASM installation
run: nasm -v

- name: just build-dos
run: just build-dos

- name: just unpadded-bootable
run: just unpadded-bootable

- name: Build project
run: just build
5 changes: 3 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ build-stage2:
nasm -f bin -D BOOT -o {{stage2_out}} {{infile}} -l {{listing_out}}

padded-bootable: unpadded-bootable
#!/bin/bash -euo pipefail

#!/bin/bash
set -euo pipefail

target_size={{ TARGET_SIZE }}
# Get the current size of the image file
current_size=$(wc -c < {{boot_out}})
Expand Down

0 comments on commit a2441b6

Please sign in to comment.