Skip to content

Commit a5b0c63

Browse files
committed
rename project
1 parent 74f71d1 commit a5b0c63

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ before_script:
3030
script:
3131
- phpunit
3232
after_success:
33-
- sed -i -e "s/nightly/${TRAVIS_TAG}/" http2-server-push.php
33+
- sed -i -e "s/nightly/${TRAVIS_TAG}/" http2-server-push-preload.php
3434
- curl https://raw.githubusercontent.com/miya0001/auto-build/master/auto-build.sh | bash
3535
deploy:
3636
provider: releases

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# HTTP/2 Server Push for WordPress
22

3-
[![Build Status](https://travis-ci.org/tarosky/http2-server-push.svg?branch=master)](https://travis-ci.org/tarosky/http2-server-push)
3+
[![Build Status](https://travis-ci.org/tarosky/http2-server-push-preload.svg?branch=master)](https://travis-ci.org/tarosky/http2-server-push-preload)
44

55
This is a plugin which sends link headers for HTTP/2 server push.
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
function activate_autoupdate() {
2222
$plugin_slug = plugin_basename( __FILE__ ); // e.g. `hello/hello.php`.
2323
$gh_user = 'tarosky'; // The user name of GitHub.
24-
$gh_repo = 'http2-server-push'; // The repository name of your plugin.
24+
$gh_repo = 'http2-server-push-preload'; // The repository name of your plugin.
2525

2626
// Activate automatic update.
2727
new Miya\WP\GH_Auto_Updater( $plugin_slug, $gh_user, $gh_repo );

tests/bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Manually load the plugin being tested.
2424
*/
2525
function _manually_load_plugin() {
26-
require dirname( dirname( __FILE__ ) ) . '/http2-server-push.php';
26+
require dirname( dirname( __FILE__ ) ) . '/http2-server-push-preload.php';
2727
}
2828
tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' );
2929

0 commit comments

Comments
 (0)