Skip to content

Commit 0f3ddeb

Browse files
committed
more
1 parent 266d695 commit 0f3ddeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eng/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ function BuildSolution {
210210
# build bootstrap tools
211211
bootstrap_config=Proto
212212
bootstrap_dir=$artifacts_dir/Bootstrap
213-
if [ ! -e "$bootstrap_dir/fslex.dll" ]; then
213+
if [ ! -f "$bootstrap_dir/fslex.dll" ]; then
214214
MSBuild "$repo_root/src/buildtools/buildtools.proj" \
215215
/restore \
216216
/v:$verbosity \
@@ -221,7 +221,7 @@ function BuildSolution {
221221
cp $artifacts_dir/bin/fslex/$bootstrap_config/$coreclr_target_framework/* $bootstrap_dir
222222
cp $artifacts_dir/bin/fsyacc/$bootstrap_config/$coreclr_target_framework/* $bootstrap_dir
223223
fi
224-
if [ ! -e "$bootstrap_dir/fsc.exe" ]; then
224+
if [ ! -f "$bootstrap_dir/fsc.exe" ]; then
225225
MSBuild "$repo_root/proto.proj" \
226226
/restore \
227227
/v:$verbosity \

0 commit comments

Comments
 (0)