Skip to content

Commit 21b1716

Browse files
committed
Update release.php
1 parent 11ad5fb commit 21b1716

File tree

1 file changed

+1
-20
lines changed

1 file changed

+1
-20
lines changed

.github/scripts/release.php

+1-20
Original file line numberDiff line numberDiff line change
@@ -42,26 +42,7 @@ function run( $command, &$result_code = null ) {
4242
)
4343
);
4444

45-
$result = json_decode( $data );
46-
47-
if ( ! is_object( $result ) ) {
48-
throw new Exception(
49-
sprintf(
50-
'Unknow response from: %s.',
51-
$url
52-
)
53-
);
54-
55-
exit( 1 );
56-
}
57-
58-
if ( ! property_exists( $result, 'version' ) ) {
59-
echo 'No version';
60-
61-
exit( 1 );
62-
}
63-
64-
$version = $result->version;
45+
$version = $data;
6546

6647
line(
6748
sprintf(

0 commit comments

Comments
 (0)