Skip to content

Commit b8cb2fb

Browse files
committed
ci(workflows): fix path for creating dummy fw_sample.i file
The previous path was incorrect for creating the dummy firmware file. Update the path to correctly place the file in $CONFIG/include/firmware/ directory.
1 parent 66d592c commit b8cb2fb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/sultan.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,10 @@ jobs:
8787
if: ${{ inputs.codename == 'gs201' }}
8888
run: |
8989
echo "Adding dummy fw_sample.i file for gs201..."
90-
cd "$CONFIG/${{ inputs.repo }}"
91-
mkdir -p include/firmware
92-
touch include/firmware/fw_sample.i
90+
cd "$CONFIG/include/"
91+
mkdir firmware
92+
cd firmware
93+
touch fw_sample.i
9394
echo "Dummy fw_sample.i file created for gs201"
9495
9596
- name: Add KernelSU

0 commit comments

Comments
 (0)