Skip to content

Commit 8bee5d7

Browse files
committed
Fix script name in error output
1 parent 487b3e8 commit 8bee5d7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/SourceBuild/content/eng/prep-source-build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ function ParseBinaryArgs {
191191
# or a pre-existing .dotnet SDK directory must exist.
192192
if [ "$dotnetSdk" == "$defaultDotnetSdk" ] && [ ! -d "$dotnetSdk" ]; then
193193
echo " ERROR: A pre-existing .dotnet SDK directory is needed if --with-sdk is not provided. \
194-
Please either supply an SDK using --with-sdk or execute ./prep.sh before proceeding. Exiting..."
194+
Please either supply an SDK using --with-sdk or execute ./eng/prep-source-build.sh before proceeding. Exiting..."
195195
exit 1
196196
fi
197197

@@ -200,7 +200,7 @@ function ParseBinaryArgs {
200200
if [ "$packagesSourceFeed" == "$defaultPackagesDir" ] && [ ! -d "$packagesSourceFeed" ]; then
201201
echo " ERROR: A pre-existing packages directory is needed if --with-packages is not provided. \
202202
Please either supply a packages directory using --with-packages or \
203-
execute ./prep.sh with download artifacts enabled before proceeding. Exiting..."
203+
execute ./eng/prep-source-buil.sh with download artifacts enabled before proceeding. Exiting..."
204204
exit 1
205205
fi
206206

@@ -224,8 +224,8 @@ function ParseBinaryArgs {
224224
packagesSourceFeed="$previouslyBuiltPackagesDir"
225225
else
226226
echo " ERROR: A pre-existing package archive is needed if --with-packages is not provided. \
227-
Please either supply a source-feed using --with-packages or execute ./prep.sh with \
228-
download artifacts enabled before proceeding. Exiting..."
227+
Please either supply a source-feed using --with-packages or execute ./eng/prep-source-build.sh \
228+
with download artifacts enabled before proceeding. Exiting..."
229229
exit 1
230230
fi
231231
fi

0 commit comments

Comments
 (0)