Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit 3ad1dd3

Browse files
committed
fix lint error only - still has test error
1 parent 52b049d commit 3ad1dd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/publish.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/env node
22
const execSh = require('exec-sh');
33
let version = require('../package.json').version;
4-
let name = require('../package.json').name.replace(/-/g, '_');
4+
const name = require('../package.json').name.replace(/-/g, '_');
55
if(version.includes("rc")) {
66
version = version.replace('-', '');
77
console.log("Adjusted version to", version, "for PyPi");

0 commit comments

Comments
 (0)