We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f0ca6b commit a2f2f6fCopy full SHA for a2f2f6f
tests/common.sh
@@ -407,17 +407,11 @@ function install_core()
407
core_dir=$(dirname "$hardware_core_path")
408
mkdir -p "$core_dir"
409
410
- echo $core_dir
411
- #find $core_dir
412
-
413
- cp -a "$core_path" "${core_dir}/esp8266"
414
- #if [ "${RUNNER_OS-}" = "Windows" ]; then
415
- # cp -a "$core_path" "${core_dir}/esp8266"
416
- #else
417
- # ln -s "$core_path" "$hardware_core_path"
418
- #fi
419
420
+ if [ "${RUNNER_OS-}" = "Windows" ]; then
+ cp -a "$core_path" "${core_dir}/esp8266"
+ else
+ ln -s "$core_path" "$hardware_core_path"
+ fi
421
}
422
423
function install_arduino()
0 commit comments