Skip to content

Commit

Permalink
Fix dependency name case
Browse files Browse the repository at this point in the history
  • Loading branch information
EridianAlpha committed Sep 16, 2024
1 parent 1a88bb4 commit cb2b5a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deployGitHubPages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: foundry-rs/foundry-toolchain@v1

- name: Install Dependencies
run: git submodule init; git submodule update; make install
run: forge install

- name: Generate Documentation
run: forge doc
Expand Down
17 changes: 3 additions & 14 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -118,20 +118,9 @@ remove-value:
# │ CONTRACT SPECIFIC CONFIGURATION │
# ================================================================
install:
# Clone forge-std and checkout the specific tag
rm -rf lib/forge-std
git clone https://github.com/foundry-rs/forge-std.git lib/forge-std && \
cd lib/forge-std && git checkout v1.9.2 && cd ../..

# Clone foundry-devops and checkout the specific tag
rm -rf lib/foundry-devops
git clone https://github.com/Cyfrin/foundry-devops.git lib/foundry-devops && \
cd lib/foundry-devops && git checkout 0.2.2 && cd ../..

# Clone openzeppelin-contracts and checkout the specific tag
rm -rf lib/openzeppelin-contracts
git clone https://github.com/OpenZeppelin/openzeppelin-contracts.git lib/openzeppelin-contracts && \
cd lib/openzeppelin-contracts && git checkout v5.0.2 && cd ../..
forge install foundry-rs/[email protected] --no-commit && \
forge install Cyfrin/[email protected] --no-commit && \
forge install openzeppelin/[email protected] --no-commit

# ================================================================
# │ RUN COMMANDS │
Expand Down
2 changes: 1 addition & 1 deletion src/SettlementNft.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pragma solidity 0.8.27;
// OpenZeppelin Imports
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/base64.sol";
import "@openzeppelin/contracts/utils/Base64.sol";

// Contract Imports
import {SettlerToken} from "./SettlerToken.sol";
Expand Down

0 comments on commit cb2b5a6

Please sign in to comment.