Skip to content

Commit a49bfb4

Browse files
authored
Fix duplicate addition of PyPi index URL
1 parent a66f09b commit a49bfb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/serious_python/bin/package_command.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ class PackageCommand extends Command {
201201

202202
// Extra indexs
203203
List<String> extraPyPiIndexes = [mobilePyPiUrl];
204-
extraPyPiIndexes.add("https://cfms-dev.github.io/platform-wheels/")
204+
extraPyPiIndexes.add("https://cfms-dev.github.io/platform-wheels/");
205205
if (platform == "Pyodide") {
206206
pyodidePyPiServer = await startSimpleServer();
207207
extraPyPiIndexes.add(

0 commit comments

Comments
 (0)