Skip to content

Commit 00caebd

Browse files
filip mertensAniket-Engg
authored andcommitted
more logging
1 parent 5777cbc commit 00caebd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

apps/remix-ide/ci/downloadsoljson2.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ if [ ! -d "./apps/remix-ide/src/assets/js/soljson" ]; then
3939
fi
4040

4141
# Download the file to ./apps/remix-ide/src/assets/js/soljson.js
42+
echo "Downloading soljson.js from "$fullPath" to ./apps/remix-ide/src/assets/js/soljson.js"
4243
curl -s "$fullPath" > ./apps/remix-ide/src/assets/js/soljson.js
4344

4445
# Copy the downloaded soljson.js to the specific version directory

apps/remix-ide/webpack.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ const versionData = {
1616

1717
const loadLocalSolJson = async () => {
1818
//execute apps/remix-ide/ci/downloadsoljson.sh
19+
console.log('loading local soljson')
1920
const child = require('child_process').execSync('bash ' + __dirname + '/ci/downloadsoljson2.sh', { encoding: 'utf8', cwd: process.cwd(), shell: true })
2021
// show output
21-
//console.log(child)
22+
console.log(child)
2223
}
2324

2425
fs.writeFileSync(__dirname + '/src/assets/version.json', JSON.stringify(versionData))

0 commit comments

Comments
 (0)