Skip to content

Commit

Permalink
fix some obvious rebranding errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxMustermann2 committed Feb 19, 2025
1 parent 45fb0c3 commit d724d4e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Lint
# Lint runs golangci-lint over the entire imua repository. The `golangci` will pass without
# Lint runs golangci-lint over the entire imuachain repository. The `golangci` will pass without
# running if no *.{go, mod, sum} files have been changed.
on:
merge_group:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
if: (github.actor != 'dependabot[bot]')
steps:
- name: Permission issue fix
# semgrep for some reason sets the working directory to imua/imua
# semgrep for some reason sets the working directory to imuachain/imuachain
run: git config --global --add safe.directory /__w/imuachain/imuachain
- uses: actions/checkout@v4
- name: Get Diff
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Imuachain Contributor Guidelines

- [Imuachain Contributor Guidelines](#imua-contributor-guidelines)
- [Imuachain Contributor Guidelines](#imuachain-contributor-guidelines)
- [General Procedure](#general-procedure)
- [Architecture Decision Records (ADR)](#architecture-decision-records-adr)
- [Forking](#forking)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This is the published docker image for imua.
# This is the published docker image for imuachain.

FROM golang:1.21.12-alpine3.19 AS build-env

Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ifdef GITHUB_TOKEN
endif
endif
NAMESPACE := imua-xyz
PROJECT := imua
PROJECT := imuachain
DOCKER_IMAGE := $(shell echo $(NAMESPACE)/$(PROJECT) | tr '[:upper:]' '[:lower:]')
COMMIT_HASH := $(shell git rev-parse --short=7 HEAD)
DOCKER_TAG := $(COMMIT_HASH)
Expand Down Expand Up @@ -500,7 +500,6 @@ localnet-build:
$(MAKE) -C networks

# Generate multi node configuration files and initialize configurations
# TODO: imua testnet chainid is still under consideration and need to be finalized later
localnet-init: localnet-stop
imuad testnet init-files --chain-id imualocalnet_232-1 --v 4 -o $(CURDIR)/build/.testnets --starting-ip-address 192.168.0.2 --keyring-backend=test && \
./networks/init-node.sh
Expand Down

0 comments on commit d724d4e

Please sign in to comment.