mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-10 18:49:02 -06:00
Fix misuse of update() in run.py (#1245)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@attic/webpack-config",
|
||||
"version": "2.0.0",
|
||||
"version": "2.1.0",
|
||||
"description": "Shared webpack config for noms",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
|
||||
@@ -12,7 +12,8 @@ def main():
|
||||
env = {
|
||||
'NODE_ENV': args.mode,
|
||||
'BABEL_ENV': args.mode,
|
||||
}.update(os.environ)
|
||||
}
|
||||
env.update(os.environ)
|
||||
subprocess.check_call(
|
||||
['node_modules/.bin/webpack',
|
||||
'--config', 'node_modules/@attic/webpack-config/index.js', args.src, args.out],
|
||||
|
||||
Reference in New Issue
Block a user