496dfb1f5c7d10f432c08b10124574ac89a8e822138e95f55d9e07daf4a5c7f2

Download raw

Created: 2023-12-19 03:40:10.302489 UTC

Size: 678

Preview (limited to 512 bytes)

"#!/bin/sh\n\nset -e\n\nTOPDIR=$(dirname \"$0\")\nTARGETDIR=$TOPDIR/splitmix-hugs\n\nwhile getopts 't:' opt\ndo\n case \"$opt\" in\n t) TARGETDIR=$OPTARG ;;\n\t*) echo \"Unknown flag $opt\"; exit 1 ;;\n esac\ndone\n\n# Check tool availability\ncpphs --version\n\n# For each of the source files\nfind \"$TOPDIR/src\" \"$TOPDIR/src-compat\" -name '*.hs' | while read -r src; do\n tgt=\"$TARGETDIR/$(echo \"$src\" | sed \"s/^$TOPDIR\\/src\"'\\(-compat\\|\\)//')\"\n\n echo \"Processing $src -> $tgt\"\n\n mkdir -p \"$(dirname \"$tgt\")\"\n cpphs --noline "


Casa is a service provided by the Haskell Foundation │ Originally developed by FP Complete