1#!/bin/sh 2# this is just the commit it was last tested with 3sha=926b0960d737b9f1dfd0ec0c1dfd95d836016d33 4 5mkdir -p testdata/test262 6cd testdata/test262 7git init 8git remote add origin https://github.com/tc39/test262.git 9git fetch origin --depth=1 "${sha}" 10git reset --hard "${sha}" 11cd -