blob: 1c66f226453e651184ecc4a1718bd7f5725e2534 (
plain)
1
2
3
4
|
#! /bin/sh
VERSION=$(grep pkgver PKGBUILD | head -n1 | cut -d= -f2)
wget "http://registry.npmjs.org/webpack/-/webpack-$VERSION.tgz" -qO - 2>/dev/null | sha256sum | cut -d\ -f1 | tr -d "\n" | xclip -f -sel clip
|