Commit 31890cb
authored
Arm backend: Fix output_folder not created issue in scripts (#9269)
In files build_executorch_runner.sh and examples/arm/run.sh, realpath
command is called on output_folder before checking whether the directory
already exists. This will trigger the error like "realpath:
${output_folder}: No such file or directory."
Fix it by moving mkdir forward.
Signed-off-by: Yufeng Shi <[email protected]>1 parent 622b79e commit 31890cb
File tree
2 files changed
+3
-3
lines changed- backends/arm/scripts
- examples/arm
2 files changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
| 81 | + | |
81 | 82 | | |
82 | 83 | | |
83 | 84 | | |
| |||
106 | 107 | | |
107 | 108 | | |
108 | 109 | | |
| 110 | + | |
109 | 111 | | |
110 | 112 | | |
111 | 113 | | |
| |||
128 | 130 | | |
129 | 131 | | |
130 | 132 | | |
131 | | - | |
132 | 133 | | |
133 | 134 | | |
134 | 135 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
194 | 194 | | |
195 | 195 | | |
196 | 196 | | |
| 197 | + | |
197 | 198 | | |
198 | 199 | | |
199 | 200 | | |
200 | | - | |
201 | | - | |
202 | 201 | | |
203 | 202 | | |
204 | 203 | | |
| |||
0 commit comments