Skip to content

Commit

Permalink
Move to branch main as default branch
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Aug 17, 2023
1 parent fdb1e85 commit 10d2422
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<img src="https://img.shields.io/npm/v/@duckdb/duckdb-wasm?logo=npm" alt="duckdb-wasm package on NPM">
</a>
<a href="https://github.com/duckdb/duckdb-wasm/actions">
<img src="https://github.com/duckdb/duckdb-wasm/actions/workflows/main.yml/badge.svg?branch=master" alt="Github Actions Badge">
<img src="https://github.com/duckdb/duckdb-wasm/actions/workflows/main.yml/badge.svg?branch=main" alt="Github Actions Badge">
</a>
<a href="https://discord.duckdb.org">
<img src="https://shields.io/discord/909674491309850675" alt="Join Discord" />
Expand Down
6 changes: 3 additions & 3 deletions packages/duckdb-wasm-app/src/pages/versus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const Versus: React.FC<Props> = (props: Props) => {
<a
className={styles.link}
target="_blank"
href="https://github.com/duckdb/duckdb-wasm/tree/master/packages/benchmarks"
href="https://github.com/duckdb/duckdb-wasm/tree/main/packages/benchmarks"
rel="noreferrer"
>
here
Expand Down Expand Up @@ -192,7 +192,7 @@ export const Versus: React.FC<Props> = (props: Props) => {
<a
className={styles.link}
target="_blank"
href="https://github.com/duckdb/duckdb/blob/master/tools/rest/frontend/images/tpch-schema.png"
href="https://github.com/duckdb/duckdb/blob/main/tools/rest/frontend/images/tpch-schema.png"
rel="noreferrer"
>
here
Expand All @@ -216,7 +216,7 @@ export const Versus: React.FC<Props> = (props: Props) => {
<a
className={styles.link}
target="_blank"
href="https://github.com/duckdb/duckdb-wasm/blob/master/packages/benchmarks/src/system/arquero_benchmarks.ts"
href="https://github.com/duckdb/duckdb-wasm/blob/main/packages/benchmarks/src/system/arquero_benchmarks.ts"
rel="noreferrer"
>
non-trivial
Expand Down
2 changes: 1 addition & 1 deletion packages/duckdb-wasm/test/httpfs_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export function testHTTPFSAsync(
describe('HTTPFS Async', () => {
it('can fetch https file', async () => {
const results = await conn!.query(
`select * from "https://raw.githubusercontent.com/duckdb/duckdb-wasm/master/data/test.csv";`,
`select * from "https://raw.githubusercontent.com/duckdb/duckdb-wasm/main/data/test.csv";`,
);
expect(BigInt(results.getChildAt(2)?.get(2))).toEqual(BigInt(9n));
});
Expand Down
4 changes: 2 additions & 2 deletions scripts/deploy_pages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ if [ ! -d ${PAGES_DIR} ]; then
git worktree add ${PAGES_DIR} origin/gh-pages
fi

DEFAULT_BRANCH="master"
CURRENT_BRANCH=${1:-master}
DEFAULT_BRANCH="main"
CURRENT_BRANCH=${1:-main}

cd ${PAGES_DIR}
git fetch origin gh-pages
Expand Down
4 changes: 2 additions & 2 deletions scripts/reset_pages_subtree.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ if [ ! -d ${PAGES_DIR} ]; then
git worktree add ${PAGES_DIR} origin/gh-pages
fi

DEFAULT_BRANCH="master"
CURRENT_BRANCH=${1:-master}
DEFAULT_BRANCH="main"
CURRENT_BRANCH=${1:-main}

cd ${PAGES_DIR}
git fetch origin gh-pages
Expand Down

0 comments on commit 10d2422

Please sign in to comment.