diff --git a/scripts/vercel-post-deploy/index.js b/scripts/vercel-post-deploy/index.js index 82236d0..3757ed7 100644 --- a/scripts/vercel-post-deploy/index.js +++ b/scripts/vercel-post-deploy/index.js @@ -1,7 +1,15 @@ +import { isMacOS } from 'std-env' + import axios from 'axios' ;(async () => { + if ( !isMacOS ) { + console.log('Not on macOS, skipping') + + process.exit() + } + const { data } = await axios.get(`https://master--doesitarm.netlify.app/apple-silicon-app-test`) console.log( data.slice(0, 100) )