Browse Source

x230: fix output dir variable usage

pull/102/head
Martin Kepplinger 5 years ago
parent
commit
2d39c3ab11
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      x230/x230_heads.sh
  2. +1
    -1
      x230/x230_skulls.sh

+ 1
- 1
x230/x230_heads.sh View File

@ -113,7 +113,7 @@ check_battery
while true; do
read -r -p "Flash the BIOS now? y/N: " yn
case $yn in
[Yy]* ) cd output && flashrom -p internal --layout ${LAYOUT_FILENAME} --image bios -w "${OUTPUT_IMAGE_NAME}"; break;;
[Yy]* ) cd ${OUTPUT_PATH} && flashrom -p internal --layout ${LAYOUT_FILENAME} --image bios -w "${OUTPUT_IMAGE_NAME}"; break;;
[Nn]* ) exit;;
* ) exit;;
esac


+ 1
- 1
x230/x230_skulls.sh View File

@ -201,7 +201,7 @@ check_battery
while true; do
read -r -p "Flash the BIOS now? y/N: " yn
case $yn in
[Yy]* ) cd output && flashrom -p internal --layout ${LAYOUT_FILENAME} --image bios -w "${OUTPUT_IMAGE_NAME}"; break;;
[Yy]* ) cd ${OUTPUT_PATH} && flashrom -p internal --layout ${LAYOUT_FILENAME} --image bios -w "${OUTPUT_IMAGE_NAME}"; break;;
[Nn]* ) exit;;
* ) exit;;
esac


Loading…
Cancel
Save