snazy commented on issue #95:
URL: https://github.com/apache/polaris-tools/issues/95#issuecomment-3638014079

   Hah!
   That was quick:
   ```bash
   # install devbox
   curl -fsSL https://get.jetify.com/devbox | bash
   
   cd console/
   
   devbox init
   
   cat > devbox.json <<EOF
   {
     "$schema":  
"https://raw.githubusercontent.com/jetify-com/devbox/0.16.0/.schema/devbox.schema.json";,
     "packages": ["[email protected]"],
     "shell": {
       "init_hook": [
         "npm install"
       ],
       "scripts": {
         "build": [
           "npm run build"
         ]
       }
     }
   }
   EOF
   
   devbox run build
   tar --mtime="1980-02-01 00:00:00 UTC" -cf a.tar dist/
   
   rm -rf dist
   
   devbox run build
   tar --mtime="1980-02-01 00:00:00 UTC" -cf b.tar dist/
   
   sha256sum a.tar b.tar
   # same sha256 💥 
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to