Skip to content

Commit

Permalink
Merge pull request #2860 from rleidner/soc_bmw_p5
Browse files Browse the repository at this point in the history
soc_i3: fix syntax
  • Loading branch information
benderl authored Dec 3, 2024
2 parents 11ecd20 + d0460bf commit 92884a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/soc_i3/main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ prepare_i3DataFolder(){
then
sudo mkdir -p $i3Folder
f=soc_i3_cp1.json
if [ -f $RAMDISKDIR/$f && !-f $i3Folder/$f ]; then
if [ -f $RAMDISKDIR/$f -a ! -f $i3Folder/$f ]; then
cp $RAMDISKDIR/$f $i3Folder
fi
f=soc_i3_cp2.json
if [ -f $RAMDISKDIR/$f && !-f $i3Folder/$f ]; then
if [ -f $RAMDISKDIR/$f -a ! -f $i3Folder/$f ]; then
cp $RAMDISKDIR/$f $i3Folder
fi
fi
Expand Down

0 comments on commit 92884a3

Please sign in to comment.