Home
DevCentral
Search
Configure Global Search
Log In
Transactions
P49
Change Details
Change Details
Old
New
Diff
#!/bin/sh ARC=arc URL="http://devcentral.nasqueron.org" PRIORITY=50 ARC_OPTIONS="--conduit-uri $URL/api" arcTaskCreatedId=`$ARC todo $1 --project Servers --no-ansi $ARC_OPTIONS | gawk '{match($3,"T[0-9]+",a)}END{print a[0]}' | cut -d'T' -f 2` $ARC close T$arcTaskCreatedId --status Resolved $ARC_OPTIONS > /dev/null echo "{\"id\": $arcTaskCreatedId, \"priority\": $PRIORITY, \"viewPolicy\": \"public\"}" | $ARC call-conduit maniphest.update $ARC_OPTIONS > /dev/null echo $URL/T$arcTaskCreatedId
#!/bin/sh ARC=arc URL="http://devcentral.nasqueron.org" PRIORITY=50 ARC_OPTIONS="--conduit-uri $URL/api" arcTaskCreatedId=`$ARC todo $1 --project Servers --no-ansi $ARC_OPTIONS | gawk '{match($3,"T[0-9]+",a)}END{print a[0]}' | cut -d'T' -f 2` $ARC close T$arcTaskCreatedId --status Resolved $ARC_OPTIONS > /dev/null echo "{\"id\": $arcTaskCreatedId, \"priority\": $PRIORITY, \"viewPolicy\": \"public\"}" | $ARC call-conduit maniphest.update $ARC_OPTIONS > /dev/null echo $URL/T$arcTaskCreatedId
Continue